home *** CD-ROM | disk | FTP | other *** search
/ Sky at Night 2006 September / SAN CD 9-2006 CD-ROM 16.iso / pc / Software / Network Telescope Control / NTC-Setup.Exe / Source / ntc_server_network.dfm < prev    next >
Encoding:
Text File  |  2005-07-30  |  3.1 KB  |  139 lines

  1. object scope_network: Tscope_network
  2.   Left = 21
  3.   Top = 124
  4.   HelpType = htKeyword
  5.   HelpKeyword = 'Network'
  6.   BorderIcons = [biSystemMenu]
  7.   BorderStyle = bsDialog
  8.   Caption = 'NTC Network control'
  9.   ClientHeight = 243
  10.   ClientWidth = 258
  11.   Color = clBtnFace
  12.   Font.Charset = DEFAULT_CHARSET
  13.   Font.Color = clWindowText
  14.   Font.Height = -11
  15.   Font.Name = 'MS Sans Serif'
  16.   Font.Style = []
  17.   HelpFile = 'ntc.hlp'
  18.   OldCreateOrder = False
  19.   OnCloseQuery = form_close_query
  20.   OnCreate = formcreate
  21.   OnPaint = check_activate
  22.   OnShow = FormShow
  23.   PixelsPerInch = 96
  24.   TextHeight = 13
  25.   object network_panel: TPanel
  26.     Left = 0
  27.     Top = 0
  28.     Width = 258
  29.     Height = 243
  30.     Align = alClient
  31.     TabOrder = 0
  32.     object ip_address_label: TLabel
  33.       Left = 8
  34.       Top = 8
  35.       Width = 89
  36.       Height = 13
  37.       Caption = 'Choose IP address'
  38.     end
  39.     object ip_combo: TComboBox
  40.       Left = 104
  41.       Top = 4
  42.       Width = 153
  43.       Height = 21
  44.       ItemHeight = 13
  45.       TabOrder = 0
  46.       OnChange = ip_comboChange
  47.     end
  48.     object refresh_button: TBitBtn
  49.       Left = 0
  50.       Top = 28
  51.       Width = 43
  52.       Height = 21
  53.       Caption = 'Refresh'
  54.       TabOrder = 1
  55.       OnClick = refresh_buttonClick
  56.     end
  57.     object edit_port: TEdit
  58.       Left = 56
  59.       Top = 28
  60.       Width = 81
  61.       Height = 21
  62.       TabOrder = 2
  63.       Text = '8383'
  64.       OnChange = edit_portChange
  65.     end
  66.     object enable_network_check: TCheckBox
  67.       Left = 152
  68.       Top = 32
  69.       Width = 105
  70.       Height = 17
  71.       Hint = 'Disable network to allow local control of scope'
  72.       Caption = 'Enable network'
  73.       TabOrder = 3
  74.       OnClick = enable_network_checkClick
  75.     end
  76.     object status_log: TMemo
  77.       Left = 0
  78.       Top = 53
  79.       Width = 257
  80.       Height = 156
  81.       ScrollBars = ssVertical
  82.       TabOrder = 4
  83.     end
  84.     object clear_log_button: TBitBtn
  85.       Left = 16
  86.       Top = 213
  87.       Width = 57
  88.       Height = 25
  89.       Hint = 'Clear list'
  90.       Caption = 'Clear Log'
  91.       TabOrder = 5
  92.       OnClick = clear_log_buttonClick
  93.     end
  94.     object messages_button: TBitBtn
  95.       Left = 72
  96.       Top = 213
  97.       Width = 57
  98.       Height = 25
  99.       Hint = 'Show Messages'
  100.       Caption = 'Logging'
  101.       TabOrder = 6
  102.       OnClick = messages_buttonClick
  103.     end
  104.     object io_messages_button: TBitBtn
  105.       Left = 128
  106.       Top = 213
  107.       Width = 57
  108.       Height = 25
  109.       Hint = 'Show IO messages'
  110.       Caption = 'IO'
  111.       TabOrder = 7
  112.       OnClick = io_messages_buttonClick
  113.     end
  114.     object disk_button: TBitBtn
  115.       Left = 184
  116.       Top = 213
  117.       Width = 57
  118.       Height = 25
  119.       Hint = 'Write log to disk'
  120.       Caption = 'Disk'
  121.       TabOrder = 8
  122.       OnClick = disk_buttonClick
  123.     end
  124.   end
  125.   object scope_server: TIdTCPServer
  126.     Bindings = <>
  127.     CommandHandlers = <>
  128.     DefaultPort = 0
  129.     Greeting.NumericCode = 0
  130.     MaxConnectionReply.NumericCode = 0
  131.     OnExecute = scope_serverExecute
  132.     ReplyExceptionCode = 0
  133.     ReplyTexts = <>
  134.     ReplyUnknownCommand.NumericCode = 0
  135.     Left = 192
  136.     Top = 128
  137.   end
  138. end
  139.